home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr27 / nowthn11.zip / NOW.BAT < prev    next >
DOS Batch File  |  1995-02-21  |  468b  |  30 lines

  1. @echo off
  2. now&then %&
  3. if errorlevel 4 goto scheduled
  4. if errorlevel 3 goto not_scheduled
  5. if errorlevel 2 goto task_error
  6. if errorlevel 1 goto nowthen_error
  7.  
  8. :scheduled
  9. echo.
  10. echo NOW.BAT: Program scheduled to run!
  11. goto exit
  12.  
  13. :not_scheduled
  14. echo.
  15. echo NOW.BAT: Program was not scheduled to run!
  16. goto exit
  17.  
  18. :task_error
  19. echo.
  20. echo NOW.BAT: Error performing task!
  21. goto exit
  22.  
  23. :nowthen_error
  24. echo.
  25. echo NOW.BAT: Now&Then error!
  26. goto exit
  27.  
  28. :exit
  29.  
  30.